Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p...
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 15 Jun 2011 17:30:41 +0000 (19:30 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 15 Jun 2011 17:30:41 +0000 (19:30 +0200)
doc/lispref/ChangeLog
doc/lispref/processes.texi
lisp/ChangeLog
lisp/subr.el

index 8b682fd5c0241adcd8528b095751bfce335c2bb5..abf1bf0d8b9e180bf315c65740e55e45c1cd776e 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * processes.texi (Process Information): Renamed `process-alive-p'
+       to `process-live-p' for consistency with other `-live-p' functions.
+
 2011-06-03  Paul Eggert  <eggert@cs.ucla.edu>
 
        Document wide integers better.
index 2284699c82b73a172b605c31518a4b3d3b90b7c7..5d5b11497f72c380b216614e15208646a7313e3e 100644 (file)
@@ -859,7 +859,7 @@ For a network connection, @code{process-status} returns one of the symbols
 closed the connection, or Emacs did @code{delete-process}.
 @end defun
 
-@defun process-alive-p process
+@defun process-live-p process
 This function returns nin-@code{nil} if @var{process} is alive.  A
 process is considered alive if its status is @code{run}, @code{open},
 @code{listen}, @code{connect} or @code{stop}.
index f869ec107cbc7127af7d2b6113f92d8048b9b14f..3674d798cf8922f2d61d4045b4cf594771dc21c2 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * subr.el (process-live-p): Renamed from `process-alive-p' for
+       consistency with other `-live-p' functions.
+
 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * window.el (same-window-buffer-names, same-window-regexps)
index d0ef38c11408ef920d33aebd9d16d90ca48acb36..b328b7e17b71cc0a03847c0554887a822c3f30b3 100644 (file)
@@ -1805,7 +1805,7 @@ Signal an error if the program returns with a non-zero exit status."
          (forward-line 1))
        (nreverse lines)))))
 
-(defun process-alive-p (process)
+(defun process-live-p (process)
   "Returns non-nil if PROCESS is alive.
 A process is considered alive if its status is `run', `open',
 `listen', `connect' or `stop'."